Button
Button ("Button") { print("Button was pressed") }
Button (action: { print("Button was pressed") } ) { Text("Button") }
Image
Image(systemName: "star.circle.fill").font(.system(size: 200)).foregroundColor(.green)
Image("leaves")
Image("Table")
.resizable()
.aspectRatio(contentMode: .fill)
.frame(width: 300, height:300).border(Color.blue, width: 2)
.clipped()
Text
Text("First line.\nSecond line.")
TextField
TextField("Enter username...", text: $username)